From: emellor@ewan Date: Sat, 24 Sep 2005 19:41:48 +0000 (+0100) Subject: Added default value for ssidref -- 0. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~16770^2~1^2~5 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=6b7179401d2c8b247eaa770320db3d965655714b;p=xen.git Added default value for ssidref -- 0. Signed-off-by: Ewan Mellor --- diff --git a/tools/python/xen/xend/XendDomainInfo.py b/tools/python/xen/xend/XendDomainInfo.py index baf4bd6b52..708d2cf53b 100644 --- a/tools/python/xen/xend/XendDomainInfo.py +++ b/tools/python/xen/xend/XendDomainInfo.py @@ -320,6 +320,7 @@ class XendDomainInfo: try: defaultInfo('name', lambda: "Domain-%d" % self.domid) + defaultInfo('ssidref', lambda: 0) defaultInfo('restart_mode', lambda: RESTART_ONREBOOT) defaultInfo('cpu_weight', lambda: 1.0) defaultInfo('bootloader', lambda: None)